2f0016251140fb1222bf97ef12880a7121f59683,java/execution/impl/src/com/intellij/execution/scratch/JavaScratchConfigurable.java,JavaScratchConfigurable,setVFileToEditor,#VirtualFile#,140

Before Change


  }

  private void setVFileToEditor(VirtualFile file) {
    if (file != null) {
      myScratchPathField.getComponent().setText(FileUtil.toSystemDependentName(file.getPath()));
    }
    else {
      myScratchPathField.setText("");

After Change


  }

  private void setVFileToEditor(VirtualFile file) {
    myScratchPathField.getComponent().setText(file != null? FileUtil.toSystemDependentName(file.getPath()): "");
  }

  @NotNull